// JavaScript Document
function LP_popup(w,h,url,type){
	var winl = (screen.width - w) / 2;
    var wint = (screen.height - h) / 2;
	if(type == 'img') {
		var generator=window.open('',"popup","height="+h+",width="+w+",menubar=0,resizable=0,scrollbars=no,status=0,titlebar=0,toolbar=0,left="+winl+",top="+wint);
		generator.document.write('<html><head><title></title>');
		//generator.document.write('<link rel="stylesheet" href="style.css">');
		generator.document.write('</head><body style="margin:0px;">');
		generator.document.write('<img src="'+url+'" />');
		//generator.document.write('<p><a href="javascript:self.close()">Close</a> the popup.</p>');
		generator.document.write('</body></html>');
		generator.document.close();
    } else {
		window.open(url,"popup","height="+h+",width="+w+",menubar=0,resizable=0,scrollbars=yes,status=0,titlebar=0,toolbar=0,left="+winl+",top="+wint);
	}
}

function LP_setframe(framename,frametitle,url){
	frames[framename].location.href = url;
	document.getElementById('frametitle').innerHTML = frametitle;
}