function popload(id, type, lang)
{
	var file;
	
	var wHeight = screen.height;
	var wWidth = screen.width;
	
	if(wWidth > 1600) wWidth = 1600;
	if(wHeight > 1200) wHeight = 1200;
	
	if(wWidth < 1024) wWidth = 1024;
	if(wHeight < 768) wHeight = 768;
	
	testwindow = window.open ('http://www.profilefamily.com/modules/flashPopup.php?id='+id+'&type='+type+'&lang='+lang, "mywindow", "height="+wHeight+",width="+wWidth+",resizable=1,scrollbars=0,location=0,status=1,menubar=0");
	testwindow.moveTo(0,0);
}

