function openProvider(windowname) {	
	newWindow = window.open('',windowname,'width=800,height=445,location=yes,scrollbars,status,resizable,toolbar,menubar');
	newWindow.focus();
	return newWindow;
}

function openProviderWinSize(windowname,winX, winY) {	
	newWindow = window.open('',windowname,'width='+winX+',height='+winY+',location=yes,scrollbars,status,resizable,toolbar,menubar');
	newWindow.focus();
	return newWindow;
}
function openVerisign(windowname) {	
	newWindow = window.open('',windowname,'width=538,height=500,location=yes,scrollbars,status,resizable');
	newWindow.focus();
}
function openProviderUrl(Urlname,windowname) {	
	newWindow = window.open(Urlname,windowname,'width=800,height=445,location=yes,scrollbars,status,resizable,toolbar,menubar');
	newWindow.focus();
	return newWindow;
}
