// JavaScript Document
var regform_img1 = new Image();
regform_img1.src = "images/loginbox/button-submit.png";
					
var regform_img2 = new Image();
regform_img2.src = "images/loginbox/button-reset.png";
					
if(is_ie5_5up)
{
	document.writeln("<input id = 'regform_Btn1' type=\"image\" src=\"images/blank.gif\" border=0 onMouseOver=\"startSwing('regform_Btn1', 'submitimg');\" onMouseOut=\"stopSwing();\" style=\"cursor:pointer; width:"+regform_img1.width+"; height:"+regform_img1.height+"; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+regform_img1.src+"', sizingMethod='scale')\" />&nbsp;&nbsp;");
					
	document.writeln("<input id = 'regform_Btn2' type=\"image\" src=\"images/blank.gif\" border=0 onClick=\"reset();return false;\" onMouseOver=\"startSwing('regform_Btn2', 'resetimg');\" onMouseOut=\"stopSwing();\" style=\"cursor:pointer; width:"+regform_img2.width+"; height:"+regform_img2.height+"; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+regform_img2.src+"', sizingMethod='scale')\" />");
}
else
{
	document.writeln("<input id = 'regform_Btn1' type=\"image\" src='"+regform_img1.src+"' onMouseOver=\"startSwing('regform_Btn1', 'submitimg');\" onMouseOut=\"stopSwing();\" border=0>&nbsp;&nbsp;");
	document.writeln("<input id = 'regform_Btn2' type=\"image\" src='"+regform_img2.src+"' onClick=\"reset();return false;\" onMouseOver=\"startSwing('regform_Btn2', 'resetimg');\" onMouseOut=\"stopSwing();\" border=0>");
}