//fatura ve teslimat adresleri ayný
function same_as_billing()
{
if(document.frmorderform.samebilling.checked)
{
document.getElementById('DELIVERY').style.display = 'block';
}
else
{
document.getElementById('DELIVERY').style.display = 'none';
}
}


function bookmarkEkle()
{
// title ve URL yi DOM dan otomatik elde ediyoruz
var strTitle = document.title;
var strURL = location.href;

if (window.sidebar) {
// Mozilla Firefox Bookmark
window.sidebar.addPanel(strTitle, strURL, '');
}
else if (window.external) {
// IE Favorite
window.external.AddFavorite(strURL, strTitle);
}
else if (window.opera && window.print) {
// Opera Hotlist
var elem = document.createElement('a');
elem.setAttribute('href',url);
elem.setAttribute('title',title);
elem.setAttribute('rel','sidebar');
elem.click();
}

// firebug console log
try {
console.log('title: %s', strTitle);
console.log('URL: %s', strURL);
}
catch(er) {
// do nothin
}
}

