winHeight = 229;
winWidth = 518;

var _POPUP_FEATURES = 'location=0,statusbar=0,menubar=0,width='+winWidth+',height='+winHeight;

// in flash, call this:
// getURL("javascript: link_popup('http://google.com')");

function link_popup(url) {
	features = _POPUP_FEATURES;
	
	target = 'searchPopUp';
	
	var theWindow = window.open(url, target, features);
	theWindow.moveTo(50,50);
	if(theWindow){
		theWindow.focus();
	}
}
