﻿function openpopup(url) {

		var theURL=url;
		var winName='popup_coke_summer';
		var width=500;
		var height=580;
		var topY=(screen.height-height)/2;
		var leftX=(screen.width-width)/2;
		var features='innerWidth=' + width+',innerHeight='+height+',width=' + width+',height='+height+',top='+topY+',left='+leftX+',resizable=0,srollbars=0';

	
	    var popup=window.open(theURL,winName,features);
		popup.focus();
}


function initDecoLabels() {
	var labels = $('fieldset#loginPanel label');
	labels.each(function () {
		var label = $(this);
		var field = $('#' + label.attr('for'));
		if (field.val().length == 0) 
			label.show();
			
		field.blur(function () {
			if (this.value.length == 0) 
				label.show()
		})
		field.focus(function () {
		    var l = $(this).attr('id');
		    $('label[for='+l+']').hide();
		})
		label.click(function () {
			field.focus();
		})
		field.val("").blur();
	})
}
