/*
         ___                         _____       __
        /  /\        ________       /    /\     / /\
(-----//  /  \//----/_____/__\\--) /____/  \___/_/ //--------------------------)
      /  /   /      \     | //     \    \  /    /\/    this code was created by
     /__/   /        \    |///-----\\____\/____/  \                       sigea
(---\\  \  /   (-----\\___|/        /    /\    \  /       
      \__\/                        /____/ /\____\/            __       sigea.ch
                                   \____\/  \  /             /\_\--------------)
                                         \___\//-------------\/_/  

*/
function Formspecial(){
	this.prepare=function(){
		//if(document.getElementById('contentWrapper') && window.parent.document.getElementById('mysoundsreg')){
		//	window.parent.document.getElementById('mysoundsreg').height=document.getElementById('contentWrapper').offsetHeight+5;
		//}
		if(document.getElementsByTagName('form').length==1){
			document.getElementsByTagName('form')[0].onsubmit=function(){
				if(checkForm.validate(this)){
					window.open('', this.target,'dialog,modal,scrollbars=no,resizable=no,width=480,height=300,left=0,top=0');
				}else{
					return false;
				}
			}
		}
		return true;
	}
	return true;
}

function prepareFormspecial(){
	formspecial=new Formspecial();
	formspecial.prepare();
}
addLoadEvent(prepareFormspecial);