﻿<!-- // JavaScript Document

window.defaultStatus = 'opatija.net';
var theme = 'default';

function LM_Mouse(id, state, active, img) {
	if (active == 0) {
	if (!(state==2 || state==3)) mnuimg = document.images['mnuimg'+img];
	switch (state) {
		case 1:  //mouseOver
			mnuimg.src = '/themes/'+theme+'/images/arrow_on.gif';
			break;
		case 2: //mouseDown
			break;
		case 3: //mouseUp
			break;
		default: //mouseOut
			mnuimg.src = '/themes/'+theme+'/images/arrow_off.gif';
	}
	}
}

function LSM_Mouse(id, state, active) {
	if (active == 0) {
	switch (state) {
		case 1:  //mouseOver
			id.style.backgroundColor = '#314766';
			break;
		case 2: //mouseDown
			break;
		case 3: //mouseUp
			break;
		default: //mouseOut
			id.style.backgroundColor = '#466590';
	}
	}
}

function LM_Click(url) {
	if (url) {
		document.location.href = url;
		return false;
	}
}

function btn_Mouse(id, state) {
	switch (state) {
		case 1:  //mouseOver
			id.style.backgroundColor = '#990F00';
			break;
		default: //mouseOut
			id.style.backgroundColor = '#6896D6';
	}
}

function EnableCom() {
	if (anketa.komanketa.disabled == true) {
		anketa.komanketa.disabled = false;
		anketa.komanketa.value = '';
		anketa.komanketa.focus();
	}
}

function LH_Mouse(id, state) {
	hi = document.getElementById('hi' + id);
	hc = document.getElementById('hc' + id);
	switch (state) {
		case 1:  //mouseOver
			hi.style.backgroundColor = '#CCCCCC';
			hc.style.backgroundColor = '#CCCCCC';
			break;
		case 2: //mouseDown
			break;
		case 3: //mouseUp
			break;
		default: //mouseOut
			hi.style.backgroundColor = '';
			hc.style.backgroundColor = '';
	}
}

function LH_Click(id) {
	if (id) {
		document.location.href = 'hoteli.asp?Id=' + id;
		return false;
	}
}

function hprmse_in(pr,ro) {
	cell = document.getElementById('pe' + ro);
	cell.style.backgroundColor = '#003399';
	cell.style.color = '#FFFFFF';
	cell = document.getElementById('ro' + pr);
	cell.style.backgroundColor = '#003399';
	cell.style.color = '#FFFFFF';
	for (x=1; x<=brojsoba; x++) {
		cell = document.getElementById('pr' + x + ro);
		cell.style.backgroundColor = '#DDDDDD';
	}
	for (y=1; y<=brcijena; y++) {
		cell = document.getElementById('pr' + pr + y);
		cell.style.backgroundColor = '#DDDDDD';
	}
	cell = document.getElementById('pr' + pr + ro);
	cell.style.backgroundColor = '#003399';
	cell.style.color = '#FFFFFF';
}

function hprmse_out(pr,ro) {
	cell = document.getElementById('pe' + ro);
	cell.style.backgroundColor = '';
	cell.style.color = '';
	cell = document.getElementById('ro' + pr);
	cell.style.backgroundColor = '';
	cell.style.color = '';
	for (x=1; x<=brojsoba; x++) {
		xc = document.getElementById('pr' + x + ro);
		xc.style.backgroundColor = '';
	}
	for (y=1; y<=brcijena; y++) {
		xc = document.getElementById('pr' + pr + y);
		xc.style.backgroundColor = '';
	}
	cell = document.getElementById('pr' + pr + ro);
	cell.style.backgroundColor = '';
	cell.style.color = '';
}

-->