// JavaScript Document

var newwindow;
function poppy(url)
{
	newwindow=window.open(url,'pop','width=609,height=700,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}

function poppy2(url)
{
	newwindow=window.open(url,'pop2','width=498,height=625,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}

function downloadpop(propid, preview)
{
	newwindow=window.open("/movie_download.html?id="+propid+"&preview="+preview,'pop2','width=470,height=433,scrollbars=no');
	if (window.focus) {newwindow.focus()}
}

function downloadpop2(propid)
{
	newwindow=window.open("/movie_download.html?bgid="+propid,'pop2','width=470,height=433,scrollbars=no');
	if (window.focus) {newwindow.focus()}
}

function popup(url)
{
	newwindow=window.open(url,'pop2','width=498,height=625,scrollbars=yes,resizable=1');
	if (window.focus) {newwindow.focus()}
}
