function winOpen(url, breite, hoehe) {
	links = (screen.width/2)-(breite/2);
  	oben = (screen.height/2)-(hoehe/2);
  	window.open(url,"popup","height="+hoehe+",width="+breite+",status = no,toolbar = no,menubar = no,location = no,resizable = no,titlebar = no,scrollbars = no,fullscreen = no,top ="+oben+",left ="+links);
} 

function openWindow(theURL,winName,features) { //v2.0
 	window.open(theURL,winName,features);
}

//*************************************************************************
// lee variable enviada junto con el nombre de la página
// y se la pasa al flash
function leeypasavar(){	
var recibeNombreyVariable=window.parent.location.search;
var depuraVariableDelNombre=recibeNombreyVariable.substring(1,recibeNombreyVariable.length);
var resultado=depuraVariableDelNombre;

//	if(window.index) window.document["index"].SetVariable("prod", resultado);
//	if(document.index) document.index.SetVariable("prod", resultado);
}
//
//*************************************************************************