/**
* @author  Rumen Sabev, Stayko Dimitrov
* @version 1.1.1
*
* menu.js
* Modification History  :
*
* 1.0 	rs 	Initial
* 1.1 	sd 	Horizontal Menu Cross-Browsing Compatibility Rework.
* 1.1.1 sd 	Deleted unnesesary functions.
*/

function openImage(site, settings) {
		var imageViewWindow = window.open(site,"imageViewWindow",settings + "location=no,toolbar=no,status=no,resizeable=yes,scrollbars=no");
		imageViewWindow.focus();
}

function go_config(){
	window.open(document.config.configurator.value, "_blank", "location=no,toolbar=no,status=yes,resizeable=no,scrollbars=yes,width=620,screenX=1,screenY=1,left=1,top=1");
	document.config.configurator.value = "Select"
}

function openImage(t,p){					  				  									
loc = "location=no,toolbar=no,status=yes,resizeable=no,scrollbars=no,screenX=10,screenY=10,left=10,top=10," + p
window.open(t,"_blank",loc)
}

function newsletter(){window.open("newsletter/newsletter.php","_blank","location=no,toolbar=no,status=yes,resizeable=no,scrollbars=no, width=420,height=250,screenX=1,screenY=1,left=1,top=1,")
}

function open_conf(t){
	window.open(t,"_blank","location=no,toolbar=no,status=yes,scrollbars=yes, width=620,screenX=1, screenY=1,left=1,top=1,")
}

function print(t){
	window.open("print.php?id=" +t,"_blank","location=no,toolbar=no,status=yes,scrollbars=yes, width=620,screenX=1, screenY=1,left=1,top=1,")
}

function news_view(aid){window.open("news_view.asp?id="+aid,"_blank","location=no,toolbar=no,status=yes,resizeable=no,scrollbars=yes,width=400,height=400,screenX=350,screenY=1,left=350,top=1,")
}

// Initialize the Help Window
function PopupHlpWnd(wndurl) {
	var	wndh=null;
	var	w = 340;
	var	h = 290;
	wndh=window.open('','popup',
	'scrollbars=1,toolbar=0,location=0,menubar=0,directories=0,status=0,resizable=1,maximize=1'+
	',top=0,left=0'+
	',width=' + w +
	',height=' + h +
	''
	);
	wndh.location.href = (wndurl);
	wndh.focus(1);
}