
	//standard pop-up
	function Popup(FullURL,Style){
		var RandomNumber = Math.round(Math.random()*100)
		var Scrollbar = 'yes'
		var WindowName = 'PopupWindow' + RandomNumber

		if(FullURL.indexOf('?') > 0){
			var LinkURL = FullURL + '&Popup=1'
			}
		else{
			var LinkURL = FullURL + '?Popup=1'
			}
			
		//set popup style
		if(Style == 'Mini'){
			var Width = 230;
			var Height = 250;
			Scrollbar = 'no'
			WindowName = 'Mini'
			}
		if(Style == 'Note'){
			var Width = 400;
			var Height = 340;
			WindowName = 'Note'
			}
		if(Style == 'Tip'){
			var Width = 500;
			var Height = 350;
			WindowName = 'Tip'
			}
		if(Style == 'Warning'){
			var Width = 470;
			var Height = 560;
			Scrollbar = 'no'
			WindowName = 'Warning'
			}
		if(Style == 'Page'){
			var Width = 790;
			var Height = 640;
			WindowName = 'Page'
			}
		if(Style == 'Chart'){
			var Width = 730;
			var Height = 570;
			WindowName = 'Chart'
			}
		if(Style == 'PageWithAddress'){
			var Width = 750;
			var Height = 550;
			WindowName = 'PageWithAddress'
			}
			
		//open window
		if(Style == 'PageWithAddress'){
			window.open(LinkURL,WindowName,'toolbar=yes, location=yes, directories=yes, status=yes, menubar=yes, resizable=yes, scrollbars=' + Scrollbar + ', screeny=0, screenx=0, top=0, left=0, width=' + Width + ', height=' + Height);
			}
		else if(Style == 'Warning'){
			if (window.showModalDialog) {
				window.showModalDialog(LinkURL,WindowName,'center:no, resizable:no, scroll:no, dialogTop:0, dialogLeft:0, dialogWidth:' + Width + ', dialogHeight:' + Height);
			}
			else{
				window.open(LinkURL,WindowName,'toolbar=no, location=no, directories=no, status=no, menubar=no, resizable=no, scrollbars=' + Scrollbar + ', screeny=0, screenx=0, top=0, left=0, width=' + Width + ', height=' + Height);
				}
			}
		//warning
		else{
			if (window.showModalDialog) {
				window.showModalDialog(LinkURL, WindowName, "dialogHeight:" + Height + "px; dialogWidth:" + Width + "px; dialogTop: 0px; dialogLeft: 0px; edge: Raised; center: No; scroll: No; resizable: No; status: Yes;");
			}
			else{
				window.open(LinkURL,WindowName,'toolbar=no, location=no, directories=no, status=no, menubar=no, resizable=yes, scrollbars=' + Scrollbar + ', screeny=0, screenx=0, top=0, left=0, width=' + Width + ', height=' + Height);
				}
			}
		}
		
 