function popup_window(winFile, winHost, winWidth, winHeight, winTitle) 
{
	var LeftPosition = (screen.width) ? (screen.width-winWidth)/2 : 0;
	var TopPosition = (screen.height) ? (screen.height-winHeight)/2 : 0;
	var w = window.open('', '','width='+winWidth+',height='+winHeight+',resizable=no,top='+TopPosition+',left='+LeftPosition+'');
	var d = w.document;
	d.open();
	d.writeln("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" "+"\"http://www.w3.org/TR/html4/strict.dtd\">");
	d.writeln("<html><head><title>" +winTitle+ "<\/title>");
	d.writeln("<meta http-equiv=\"Content-Script-Type\" ","content=\"text/javascript\"><\/head>");
	d.writeln("<body style='margin:0px;padding:0px;'>")
	d.writeln("<div><img src='"+winHost+"/phpThumb/phpThumb.php?src="+winFile+"&w="+winWidth+"&f=png&far=B&q=100'><\/div>");
	d.writeln("<\/body><\/html>");
	d.close();
}
function show_video()
{
	$('#home_video').show();
	$('#video_box').show();
}
function hide_video()
{
	$('#home_video').hide();
	$('#video_box').hide();
}

