function ShowAdvert(url)
{
var scr=screen.width
if (scr>=1024)
{
 wheight=600;
 wwidth=800;
}
else
{
 wheight=480;
 wwidth=640;
}

 var top=(screen.height-wheight)/2-40;
 var left=(screen.width-wwidth)/2;

url='advert.php?id='+url;
windop=window.open( url, "_blank", "toolbar=0,scrollbars=1,resizable=0,left="+left+",top="+top+",width="+wwidth+",height="+wheight );
}

function photoSize(w,h)
{
 document.getElementById("photoframe").width=w;
 document.getElementById("photoframe").height=h;

}

function redPhoto(ph_id)
{
 for (i=1;i<=5;i++)
 {
                  photo_id="adv_photo_"+i;
                 if (i==ph_id) border="solid 1px red"; else border="solid 1px black";
                  document.getElementById(photo_id).style.border=border;
 }
}

function onSelect(l,s)
{
document.sform.action='print_select.php?l='+l+'&s='+s;
document.sform.submit();
}
function onSubmitt(l,s)
{
document.sform.target="_parent";
document.sform.action='add.php?s'+l+'='+s+'&st=1';
}
