
function StandardLoginWidget() {

    this.width=200;
	this.height=200;
	this.mp_id=0;

    this.draw = function () {
		var browser = navigator.appName;
		if(browser == "Microsoft Internet Explorer"){
			this.scroll_width=19;
		}
		output="<IFRAME frameborder=0 width='" + this.width + "' height='" + this.height+ "' src='http://prepsn.com/widgets/login_widget.php?mid=" + this.mp_id + "'></IFRAME>";
		document.write(output);
    };
}
