// JavaScript Document

function OpenScript( strImg, nWidth, nHeight )
{
	window.open( "popup.asp?img=" + strImg, "Visualisation", "resizable=yes, location=no, width=" + nWidth + ", height=" + nHeight + ", menubar=no, status=no, scrollbars=yes, menubar=no" );
}

function ouvrirInformations()
{
	window.open( "form_informations.html", "informations", "resizable=no, location=no, width=600, height=530, menubar=no, status=no, scrollbars=yes, menubar=no" );
}

function startmainsite(Langue, Demo)
{
	var wf = "";	
	wf = wf + "width=" + 788;
	wf = wf + ",height=" + 528;
	
	if (screen.height <= 600) {
	  wf = wf + ",top=0"; 
	  wf = wf + ",left=0";
	} else {
	  wf = wf + ",left=" + (screen.width - 788)/2;
		wf = wf + ",top=" + (screen.height - 528)/2; 
	}
	wf = wf + ",resizable=" + "yes";
	wf = wf + ",scrollbars=" + "no";
	wf = wf + ",menubar=" + "no";
	wf = wf + ",toolbar=" + "no";
	wf = wf + ",directories=" + "no";
	wf = wf + ",location=" + "no";
	wf = wf + ",status=" + "no";	
	window.open("http://www.asapdealers.com/main.asp?Langue=" + Langue + "&paramdemo=" + Demo, "", wf);
}