function Picture(the_url)
{
	if (the_url!="")
    new_win = window.open(the_url,'','width=400,height=400,menubar=0,toolbar=0,scrollbars=0,status=0');
}

function Show(the_url)
{
	if (the_url!="")
    new_win = window.open(the_url,'','width=850,height=480,menubar=0,toolbar=0,scrollbars=1');
}

function PopUp(the_url,the_w)
{
	if (the_url!="")
    new_win = window.open(the_url,'','width='+the_w+',height=480,menubar=0,toolbar=0,scrollbars=1');
}

function Hint(the_url)
{
	if (the_url!="")
    new_win = window.open(the_url,'help','width=300,height=200,menubar=0,toolbar=0,scrollbars=1');
		new_win.focus();
}


function Login(the_url)
{
	if (the_url!="")
    new_win = window.open(the_url,'','width=500,height=300,menubar=0,toolbar=0,scrollbars=0,resizable=0');
}


function Show_Full(the_url)
{
	if (the_url!="")
    new_win = window.open(the_url);
}
