function openNewWindow(url,w,h)
{
	var newwindow;
	newwindow=window.open(url,'name','width='+ w +',height='+ h +',scrollbars=no,left=100,top=100');
	if (window.focus) {newwindow.focus()}
}


