
function opWin(url,name,w,h){
	feature = "width=" + w + ",height=" + h;
	win = window.open(url,name,feature);
	win.focus();
}

function opWorkFlow(url){
	win = window.open(url,"WorkFlowWin","width=600,height=600,scrollbars=yes");
	win.focus();
}