function PopWindow(AIdent, AUrl, Look) {
	if (theBrowser.code == 'MSIE') {
		var APopup = window.open('about:blank', AIdent, Look);
		try {
			APopup.document.write(page_is_loading + '...');
		} catch(e) {
		}
		APopup.location.href = AUrl;
		APopup.focus();
	} else {
		var APopup = window.open(AUrl, AIdent, Look);
		APopup.focus();
	}
}

function OpenPrint(AUrl) {
	PopWindow('Print', AUrl, 'toolbar=1,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=728,height=500');
}

function OpenScreenShow(AIdent) {
	PopWindow('ScreenShow', path_popups + '/screenshow.php?id=' + AIdent, 
		'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=800,height=620');
}

function OpenScreenShot(AFileName) {
	PopWindow('ScreenShot', AFileName,
		'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=800,height=500');
}

function OpenSendForm(id, type) {
	PopWindow('MailAFriend', path_popups + '/mail_a_friend.php?id=' + id + '&type=' + type, 
		'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=728,height=450');
}

function OpenMedWindow(AId) {
	PopWindow('mediumdetail', path_popups + '/medium_detail.php?htm_id=' + AId,
		'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=728,height=450');
}

function OpenVResWindow(AId) {
	PopWindow('VotingRes', path_popups + '/vresult.php?vid=' + AId,
		'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=500,height=450');
}

function LoadInfoFile(AFile) {
	PopWindow("_moreinfo", AFile, 
		"toolbar=0, location=0, directories=0, status=1, menubar=0,scrollbars=1,resizable=1, width=800, height=480, left=30, top=30");
}

function OpenQuestion(qid) {
	PopWindow('Question', path_popups + '/question.php?htm_id=' + qid,
		'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=728,height=450');
}

function OpenTrainer(tid) {
	PopWindow('Trainer', path_popups + '/trainer.php?htm_id=' + tid,
		'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=728,height=450');
}
