﻿function cspModal(page){
	var props=new Array();
	props[0]='dialogWidth:'+((arguments.length>1)?arguments[1]:'300')+'px';
	props[1]='dialogHeight:'+((arguments.length>2)?arguments[2]:'155')+'px';
	props[2]='resizable:yes';
	props[3]='scroll:no';
	props[4]='status:yes';//this is always yes when site is not in browser's trusted sites.
	props[5]='edge:raised';
	return window.showModalDialog(page,'',props.join(';'));
}