// JavaScript Document
function create_popup(theURL,winName,features) {
	myFloater = window.open(theURL,winName,features);
	myFloater.opener = self;
}
