function popupWindow(wndURL,wndWidth,wndHeight)
{
    if (document.all) var xMax = screen.width, yMax = screen.height;
    else
        if (document.layers) var xMax = window.outerWidth, yMax = window.outerHeight;
        else var xMax = 640, yMax=480;

    var xOffset = (xMax - wndWidth)/2, yOffset = (yMax - wndHeight)/2;

    window.open(wndURL,'','width='+wndWidth+',height='+wndHeight+',screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',copyhistory=no,directories=no, menubar=no,location=no,scrollbars=no,resizable=no');
}

function sendmail(whom,where){ 
w=window.open('mailto:'+whom+'@'+where); 
if(w)w.close(); 
return 0; 
} 

function markWindow(mark, photoid) {
    if (document.all)
        var xMax = screen.width, yMax = screen.height;
    else
        if (document.layers)
            var xMax = window.outerWidth, yMax = window.outerHeight;
        else
            var xMax = 640, yMax=480;

    var xOffset = (xMax - 200)/2, yOffset = (yMax - 200)/2;

    window.open('http://www.shunk.ru/mark.php?act=photo&id='+photoid+'&mark='+mark,'test','width=300,height=110,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',copyhistory=no,directories=no,menubar=no,location=no,scrollbars=no,resizable=no');


}


function myover(mark) { 

	document.images['mark1'].src='/images/g2.gif'; 
	document.images['mark2'].src='/images/g2.gif'; 
	document.images['mark3'].src='/images/g2.gif'; 
	document.images['mark4'].src='/images/g2.gif'; 
	document.images['mark5'].src='/images/g2.gif'; 
if (mark < 5) {
	document.images['mark5'].src='/images/g1.gif'; 
	}
if (mark < 4) {
	document.images['mark4'].src='/images/g1.gif'; 
	}
if (mark < 3) {
	document.images['mark3'].src='/images/g1.gif'; 
	}
if (mark < 2) {
	document.images['mark2'].src='/images/g1.gif'; 
	}
if (mark < 1) {
	document.images['mark1'].src='/images/g1.gif'; 
	}
	
					
} 

function myout(mark) { 
	document.images['mark1'].src='/images/g2.gif'; 
	document.images['mark2'].src='/images/g2.gif'; 
	document.images['mark3'].src='/images/g2.gif'; 
	document.images['mark4'].src='/images/g2.gif'; 
	document.images['mark5'].src='/images/g2.gif'; 
if (mark < 5) {
	document.images['mark5'].src='/images/g1.gif'; 
	}
if (mark < 4) {
	document.images['mark4'].src='/images/g1.gif'; 
	}
if (mark < 3) {
	document.images['mark3'].src='/images/g1.gif'; 
	}
if (mark < 2) {
	document.images['mark2'].src='/images/g1.gif'; 
	}
if (mark < 1) {
	document.images['mark1'].src='/images/g1.gif'; 
	}
					
} 


var expanded=true;
function expandIt(whichEl,picture){
	theLayer=document.getElementById(whichEl).style;
	theLayer.display = (theLayer.display == "none" ) ? "" : "none";
	thePicture=document.getElementById(picture);
	if(theLayer.display == "none"){
		thePicture.src="/images/icoPlus.gif";
	}else{
		thePicture.src="/images/icoMinus.gif";
	
	}
}
