function popupWindow (uri,width,height)
{
	window.open(uri,'','width='+width+', height='+height);	
}
function popupWindowWithScroll (uri,width,height)
{	
	window.open(uri,'','width='+width+', height='+height+',scrollbars=yes');	
	//window.open(uri,'','width='+width+', height='+height);	
}
