var newwindow;
function popup2(url)
{
	newwindow=window.open(url,'name', 'width=700, height="600,top=100,left=100,resizable=1,scrollbars=yes,address=yes');
	if (window.focus) {newwindow.focus()}
}

/*function popup2(url)
{
	newwindow=window.open(url,'name', 'width=700,height=600,top=100,left=200,resizable=1,scrollbars=yes,address=yes');
	if (window.focus) {newwindow.focus()}
}*/

function newWin(url, width, height)
{
	newwindow=window.open(url,'name', 'width=' + width + ',height=' + height +   ',top=,left=200,resizable=yes,scrollbars=yes,address=yes');
	if (window.focus) {newwindow.focus()}
}
	
