/*
function opennew(file, name, width, height)
{
	var centh = ((screen.width /2) - (width /2));
	var centv = ((screen.height /2) - (height /2));
//	window1=window.open(file, name, 'height='+height+',width='+width+',top='+centv+',left='+centh+',status=no,menubar=no,scrollbars=no,resizable=no');
	window1=window.open(file, name, 'height='+height+',width='+width+',top='+centv+',left='+centh+',status=yes,menubar=no,scrollbars=yes,resizable=no');
	window1.focus();
}
*/

function opennew(file, name, width, height, scrollbar)
{
	var centh = ((screen.width /2) - (width /2));
	var centv = ((screen.height /2) - (height /2));
//	window1=window.open(file, name, 'height='+height+',width='+width+',top='+centv+',left='+centh+',status=no,menubar=no,scrollbars=no,resizable=no');
	window1=window.open(file, name, 'height='+height+',width='+width+',top='+centv+',left='+centh+',status=yes,menubar=no,resizable=no,scrollbars='+scrollbar);
	window1.focus();
}
