$(document).ready(function(){	

	$("a.openWin").click(function(){
 		var newWin = window.open(this.href,"Notice","menubar=1,resizable=1,width=500,height=600,scrollbars=1");
 		//newWin.document.getElementById('bodyWrapper').innerHTML="90%";
 		newWin.window.focus();
 		return false;
   });
   

});

function deviceGroup () {
	var theDeviceType = "";
	if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1) || (navigator.userAgent.indexOf('iPad') != -1)) {
		theDeviceType = "iOS";
	}
	return theDeviceType;
}

