var newwindow;
function p(url, h, w) {

	sizeString = "width=" + w + ", height=" + h ;
	newwindow=window.open(url,'name',sizeString);
	
//	'width=400,height=380'
	
	//newwindow=window.open(url,'name');
	if (window.focus) {newwindow.focus()}
}



function p2(url) {
	newwindow=window.open(url,'name');
	if (window.focus) {newwindow.focus()}
}