function popitup(url)
{
	
	newwindow=window.open(url,'name','height=200,width=150');
	if (window.focus) {newwindow.focus()}
	alert('lsflsdjf');
	
	
	var tmp=newwindow.document;
	alert('1');
	newwindow.document.write('PartsTown');
	tmp.write('<html><head><title>PartsTown</title>');
	tmp.write('</head><body><p>this is once again a popup.</p>');
	tmp.write('<p><a href="javascript:alert(self.location.href)">view location</a>.</p>');
	tmp.write('<p><a href="javascript:self.close()">close</a> the popup.</p>');
	alert('2');
	tmp.write('</body></html>');
	tmp.close();
	return false;

}
