// JavaScript Document
function op_img(img_path, w, h) {
	var server_path = ""
	type =  img_path.charAt(img_path.length-5)
	if(type=="h") h = Math.round(w/1.33);
	if(type=="v") w = Math.round(h/1.33);

	openstr = "location=no,width=" + w + ",height=" + h + ""
	newWindow = window.open("", '', openstr);
	newWindow.document.write(
		'<html><head><title>Peacedialogue.AM - Photo</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8">' +
		'<link href="uyut_rus.css" rel="stylesheet" type="text/css"></head>' +
		'<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">' +
		'<div align="center"><img src="' + img_path + '" id="imnkar" name="imnkar" class="nk" border="0" alt="PeaceDialogue.AM"/ onClick="javascript:window.close()"></div></body></html>');
	//newWindow.focus();
}

function QuestionImages(TestQuestionId, SessionID, TestId) {
	openstr = "location=no,width=700,height=400"
	newWindow = window.open("questionimages.php?SessionID="+SessionID+"&TestQuestionId="+TestQuestionId+"&TestId="+TestId, '', openstr);
	newWindow.focus();
	//newWindow.document.write();
}

function showHide(E) {
	E.style.position=(E.style.position=='absolute' ? 'relative' : 'absolute');
	E.style.visibility=(E.style.visibility=='hidden' ? 'visible':'hidden');
}

