/**
 * These functions are now deprecated.  Use top.Spawn.spawn(windowName) to spawn
 * pop up windows.
 */

function spawn(sWhichSpawn) {	
	top.Spawn.spawn(sWhichSpawn, 
		arguments[1], 
		arguments[2], 
		arguments[3], 
		arguments[4], 
		arguments[5]);
}

function closeSpawn(sWhichSpawn) {
	top.Spawn.closeSpawn(sWhichSpawn);
}

function getWindow(windowArrayName, sURL, bAutoScroll, iHeight, iWidth, bStatusBar, bMenuBar, bToolBar, bLocationBar) {
	return top.Spawn.getWindow(windowArrayName, sURL, bAutoScroll, iHeight, iWidth, bStatusBar, bMenuBar, bToolBar, bLocationBar);
}

function getCookieInfo(bFirstParam) {
	return top.Spawn.getCookieInfo(bFirstParam);
}

try {
	interface_registerJSResource("spawnInterface");
}
catch(x) {
	
}


