// JavaScript Document
function centerWinTK(url){
var win = window.open(url, "SpPPS", "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1");
win.focus();
}
//Parent Window
function parentWindow(url){
	changeWindow = window.open( url, "EnterPPS" );
	changeWindow.focus();

}
//Popup Window
function popupWindow(url){
	changeWindow = window.open(url);
	changeWindow.focus();

}