var vrootrousseau = 'http://www.rousseaumetal.com/';
var vrootrousseauprod = 'http://www.rousseaumetal.com/';
var vrootauto = 'http://www.rousseau-automotive.com/';

function OpenWindow(vurl,vname)
{
	vheight = screen.availHeight - 100;
	vwidth = screen.availWidth - 10;	
	
	vheight = document.all?document.body.clientHeight:innerHeight;
	
	vheight = vheight + 10;
	vwidth = screen.availWidth - 10;
	
	mywindow = window.open(vurl,vname,'height='+vheight+',width='+vwidth+',left=0,top=0,status=yes,menubar=yes,scrollbars=yes,location=1,resizable=yes,toolbar=yes')	
	if(mywindow)
		mywindow.focus();
}

function OpenURL(vroot,vpage,vname)
{
	vheight = screen.availHeight - 100;
	vwidth = screen.availWidth - 10;	
	
	vheight = document.all?document.body.clientHeight:innerHeight;
	
	vheight = vheight + 10;
	vwidth = screen.availWidth - 10;
	
	var vtheurl = vroot + vpage;
	
	mywindow = window.open(vtheurl,vname,'height='+vheight+',width='+vwidth+',left=0,top=0,status=yes,menubar=yes,scrollbars=yes,location=1,resizable=yes,toolbar=yes')	
	if(mywindow)
		mywindow.focus();
}

function OpenURLParam(vroot,vpage,vname,vparam)
{
	vheight = screen.availHeight - 100;
	vwidth = screen.availWidth - 10;	
	
	//vheight = document.all?document.body.clientHeight:innerHeight;
	
	vheight = vheight + 10;
	vwidth = screen.availWidth - 10;
	
	var vtheurl = vroot + vpage;
	
	mywindow = window.open(vtheurl,vname,vparam)	
	
	if(mywindow)
		mywindow.focus();
}