
// CLARITYMEDIALABS.COM
// Librerķa de funciones JAVASCRIPT
// =========================================================================================

// Abre una ventana emergente
//
function LibWindowPopup(url_page, window_name, w, h)
{
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;
	if (winl < 0) winl = 0;
	if (wint < 0) wint = 0;
	
	windowprops = "height="+h+",width="+w+",top="+ wint +",left="+ winl +",location=no,"
	+ "scrollbars=no,menubar=no,toolbar=no,resizable=no,status=no,directories=no,titlebar=no";
	
	window.open(url_page, window_name, windowprops);
	return false;
}

// Abre una ventana emergente con scroll
//
function LibWindowPopupScroll(url_page, window_name, w, h)
{
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;
	if (winl < 0) winl = 0;
	if (wint < 0) wint = 0;
	
	windowprops = "height="+h+",width="+w+",top="+ wint +",left="+ winl +",location=no,"
	+ "scrollbars=yes,menubar=no,toolbar=no,resizable=no,status=no,directories=no,titlebar=no";

	window.open(url_page, window_name, windowprops);
	return false;
}

