function show (image, w, h){
coin=window.open("","coin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+w+",height="+h+"");
coin.document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">');
coin.document.writeln('<html>');
coin.document.writeln('<head>');
coin.document.writeln('<title>Picture</title>');
coin.document.writeln('<meta http-equiv="Copyright" content="Orangelio Studio">');
coin.document.writeln('<meta http-equiv="Reply-to" content="lionet@one.lv">');
coin.document.writeln('</head>');
coin.document.writeln('<body background="" bgcolor="" marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">');
coin.document.write('<a href="javascript:window.close();">');
coin.document.writeln('<img border="0" src="'+image+'" width='+w+' height='+h+'>');
coin.document.write('</a></body></html>');
coin.document.close();
}

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		row_over  = newImage("images/info/row_grey.gif");
		preloadFlag = true;
	}
}


function honka_win(winurl,winname)

{

	newwin = window.open(winurl,winname,'scrollbars=yes,resizable=no,width=630,height=600');

	if(parseInt(navigator.appVersion) >= 4)

	{

 		setTimeout('newwin.focus();',250);

	}

}

function honka_window(winurl,winname)

{

	newwin = window.open(winurl,winname,'scrollbars=no,resizable=no,width=480,height=350');

	if(parseInt(navigator.appVersion) >= 4)

	{

 		setTimeout('newwin.focus();',250);

	}

}

function winmin(winurl,winname)

{

	newwin = window.open(winurl,winname,'scrollbars=no,resizable=no,width=223,height=305');

	if(parseInt(navigator.appVersion) >= 4)

	{

 		setTimeout('newwin.focus();',250);

	}

}