﻿
// Use to Embed Flash Movie in IE-ActiveX Workaround
function CreateFlashControl(DivID, tagData)
{
	var d = document.getElementById(DivID);
	d.innerHTML = tagData;
}

// Use to popup links within set dimensions
function WindowPop(url,name,width,height,location,resize,scrollbars)
{
	properties = 'width=' + width + ',height=' + height + ',location=' + location + ',resizable=' + resize + ',scrollbars=' + scrollbars;
	window.open(url,name,properties);
}