﻿// JScript File

// Vars	

// Displays a pop-up window to the user
function popWindow(url, name, width, height, scrolling) {
	if (!window.open(url,name,'titlebar=Yes,resizable=Yes,statusbar=Yes,scrollbars=' + scrolling + ',width=' + width + ',height=' + height)) alert('Your pop-up blocker has blocked this content');
}

