
// *** COREJAVASCRIPT - General ***

function link_windowpopup(src,width,height) {
	if(typeof width == 'undefined')
		width = 500;

	if(typeof height == 'undefined')
		height = 500;

	// new window's name must not contain spaces or IE will throw an error.
	window.open(src, 'popupwindow', 'menubar=no,location=no,resizable=yes,scrollbars=no,status=no,width='+width+',height='+height);
}
