function openURL(urlIn, linkID){
	var newURL = '/include/links/link_redirect.asp?url=' + escape(urlIn) + '&link_id=' + linkID
	newwin = window.open( newURL,'Target','scrollbars=yes,resizable=1,location=yes,toolbar=yes,width=725,height=525');
}
function openURL2(urlIn){
	//var newURL = '/include/links/link_redirect.asp?url=' + escape(urlIn) + '&link_id=' + linkID
	newwin = window.open( urlIn,'Target','scrollbars=yes,resizable=1,location=yes,toolbar=yes,width=725,height=525');
}
function openWindow(userid, height, width, page, site, qs){
if('undefined' == typeof site) {
qs = '';
}
if('undefined' == typeof qs) {
qs = '';
}
var newloc
newloc = '/Exec/Cust_Service/';
newloc = newloc + page + '?userid=' + userid + '&site=' + site + qs;
window.open(newloc,'HELP','height=' + height + ',width=' + width + ',scrollbars=no,sizable=no');
}
