<!--
	function normalwindow(pageURL){
		newwindow=window.open(pageURL,'newWin2','menubar=yes,toolbar=yes,location=yes,status=yes,left=0,top=0,width='+screen.availablewidth+',height='+screen.availableheight+',resizable=yes,scrollbars=yes')
		self.close()
	}

	//preload image files
	image_1 = new Image()
	image_1.src = "../images/contact_cms-fullshot.gif"
	image_2 = new Image()
	image_2.src = "../images/contact_csa-fullshot.gif"
	image_3 = new Image()
	image_3.src = "../images/solutions_m2tv-shot1.jpg"
	image_4 = new Image()
	image_4.src = "../images/solutions_m2tv-shot2.jpg"
	image_5 = new Image()
	image_5.src = "../images/solutions_m2tv-shot3.jpg"
	image_6 = new Image()
	image_6.src = "../images/solutions_m2tv-shot4.jpg"
	image_7 = new Image()
	image_7.src = "../images/contact_cms-fullshot.gif"
	

	//DetectImageSize function
	function DetectImageSize(picName,picTitle){
		picURL=picName.src
		newWindow=window.open(picURL,'newWin','toolbar=no,width='+picName.width+',height='+picName.height)
		newWindow.document.write('<html><head><title>'+picTitle+'<\/title><\/head><body background="'+picURL+'"><\/body><\/html>')
		newWindow.resizeBy(picName.width-newWindow.document.body.clientWidth,picName.height-newWindow.document.body.clientHeight)
		newWindow.focus()
	}	
//-->