
//Image Rollover and Rollout Code
function over(imgName, img_src) {
	document[imgName].src=img_src;
}

function out(imgName, img_src) {
	document[imgName].src=img_src;
}

//Popup For Window with attributes
function openWin(URL,ID,WIDTH,HEIGHT,RESIZE,SCROLL) {
        var Win = window.open(URL,ID,'width='+WIDTH+',height='+HEIGHT+',resizable='+RESIZE+',scrollbars='+SCROLL+',menubar=no,toolbar=no,location=no,directories=no,status=no');
		Win.focus();
}

//Swf Embed
function openSwf(swfName, swfColor, swfWidth, swfHeight) {
	document.write('<embed src="'+swfName+'" bgcolor="'+swfColor+'" width="'+swfWidth+'" height="'+swfHeight+'"  allowScriptAccess="sameDomain" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" />');
}