function newWindow( name, url )
{
	if( url.indexOf ("?") == -1 )
		url = url + "?kurrentPageID=" + kurrentPageID;
	else
		url = url + "&kurrentPageID=" + kurrentPageID;
	window.open( url, name, "toolbar=no,resizable=yes,scrollbars=yes,menubar=no,location=no,width=1,height=1,top=" + window.screen.height + ",left=" + window.screen.width);
}

