// JavaScript Document
$(document).ready(popupClass);
function popupClass(){
	$("a.am_popup").click(function(event){
			event.preventDefault();
			this.blur();
			//console.log(this.href);
			var prop = this.href.split("&");
			var width = 800;
			var height = 600;
			for(var n = 1; n < prop.length; n++){
				var propvalue = prop[n].split("=");
				
				//console.log("Prop:"+propvalue[0]+"; Value="+propvalue[1]+";");
				if(propvalue[0] == "width"){
					width = propvalue[1];
				}
				if(propvalue[0] == "height"){
					height = propvalue[1];
				}
				

			}
			day = new Date();
			id = day.getTime();
			eval("page" + id + " = window.open('"+this.href+"', '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width="+width+",height="+height+",left = 440,top = 225');");
	});
}



