		//Popup Layer routines.
		var ImageName='';
 		var isNav = (navigator.appName.indexOf("Netscape") !=-1);
		var x,y,a,b;
		var PUStatus='';
		var popupbody='';
		var xoff=0;
		var yoff=0;
		var x=0;
		var y=0;
		//var SelectorMsg='';
		//var PkgDescs = new Array();
		//PkgDescs[0]= new Array('Corporate Package',"Include Our Corporate Package<br><b>Design Service</b> which provides you with the designs you need to produce quality printed materials.<br>We provide you with designs for Letter Head, Business Cards, and Envelopes.<br>You may then use these designs for your printing needs.<br>Although the Design Service does not including any printing, We can also provide you with high quality printing services at competitive rates.");
		//PkgDescs[1]= new Array('Deluxe Corporate Package',"Include Our Deluxe Corporate Package<br><b>Design Service</b> which provides you with the designs you need to produce quality printed materials.<br>We provide you with designs for Letter Head, Fax Cover Sheet, Invoices, Business Cards, and Envelopes.<br>You may then use these designs for your printing needs.<br>Although the Design Service does not including any printing, We can also provide you with high quality printing services at competitive rates.");

		function PopUpWindow(BigIconImageFileName,PUStatus,xoffset,yoffset){
			if (BigIconImageFileName != 'Blank'){
				xoff=xoffset;
				yoff=yoffset;
	
				if (PUStatus == ''){
					//PkgTitle=PkgDescs[PkgDescription][0];
					//PkgDescription=PkgDescs[PkgDescription][1];
					//if (isNav){
					//
					//alert (BigIconImageFileName);
					popupbody="<html><body background-color='#ffffff'>"
										+"<table width ='600' height='500' border='1'  bgcolor='#ffffff' cellpadding='2' cellspacing='0'>"
										+"<tr bgcolor='#ffffff'><td><center>"
										+"<img src='" + BigIconImageFileName + "' border='0' alt='big image'><br><font size=2 face='verdana'><a href=\"JavaScript:self.PopUpWindow('','Off',0,0)\">Click Here to Close</a><br></td></tr>"
										+"</table></body></html>";
					x=100+xoff;
					y=10+yoff;
				}
				else{
					x=-225;
					y=-250;
					popupbody='';
				}
				UpdateLayer(popupbody);
			}
			else{
				//alert("No big image, sorry");
			}
		}

		function UpdateLayer(LayerContents){

			if(isNav) {
				document.PopUpLayer.document.write(LayerContents);
				document.PopUpLayer.document.close();
				y=y+window.pageYOffset;
				//if (y <=160){y=160;}
				document.PopUpLayer.left=x;
				document.PopUpLayer.top=y;
			}
			else {
				PopUpLayer.innerHTML=LayerContents;
				//y=y+10;
				y=y+document.body.scrollTop;
				//if (y <=160){y=160;}
				eval(dS+"PopUpLayer"+sD+h+(x));
				eval(dS+"PopUpLayer"+sD+v+y);
			}
			//alert ("Layer contents - "+LayerContents);//+"\ndS="+dS+"\nsD="+sD+"\nh="+h+"\nv="+v+"\nx="+x+"\ny="+y);
		}



		function setupDescriptions(PkgDescription) {
			var x = navigator.appVersion;
			y = x.substring(0,4);
			if (y>=4) setVariables();
			//if (PkgDescription != ''){
			//	PopUpWindow(PkgDescription,'',0,0);
			//}
		}



		function setVariables(){
			if (navigator.appName == "Netscape") {
				h=".left=";
				v=".top=";
				dS="document.";
				sD="";
			}
			else {
				h=".pixelLeft=";
				v=".pixelTop=";
				dS="";
				sD=".style";
			}
		}

