// JavaScript Document
 function popitupSknyShrt(url) {
	newwindow=window.open(url,'name','height=500,width=600');
	if (window.focus) {newwindow.focus()}
	return false;
}
 function popitupSknyPnt(url) {
	newwindow=window.open(url,'name','height=440,width=600');
	if (window.focus) {newwindow.focus()}
	return false;
}
