function popupimg( widthh, heightt, imgstr )
{
	contents = '<HTML><HEAD><TITLE>ÓÀ-ÑÈÃÌÀ :: Ôîòî</TITLE></HEAD>\n' +
	'<BODY bgcolor="#FFFFFF" style="font-family:Tahoma,arial,sans-serif;font-weight:bold;font-size:13px;margin:5px;text-align:center">'+
	'<IMG SRC="/img/photo/' + imgstr + '" width = ' + widthh + ' height = ' + heightt + ' alt="èäåò çàãðóçêà....">\n'+
	'<BR>\n'+
	'</BODY></HTML>';
	heightt += 10;
	widthh += 10;
	options = "toolbar=0,status=0,menubar=0,scrollbars=0,resizable=1,width=" + widthh + ",height=" + heightt;
	newwindow = window.open( "", "mywindow", options );
	newwindow.document.write( contents );
	newwindow.focus();
	newwindow.moveTo( 20, 20 );
	newwindow.document.close();
}

function MenuOn( idel )
{
	document.getElementById( idel ).setAttribute( 'src', '/img/main/menuon.gif' );
}

function MenuOff( idel )
{
	document.getElementById( idel ).setAttribute( 'src', '/img/main/menuoff.gif' );
}

function mail( p1, p2, p3 )
{
	return p1 + "@" + p2 + "." + p3;
}

function email( p1, p2, p3 )
{
	document.write( mail( p1, p2, p3 ) );
}

function emailto( p1, p2, p3, subj )
{
	mail = mail( p1, p2, p3 );
	if( subj != "" )
		mail += "?subject=" + subj;

	window.location.href = mail;
}


